home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 August / chip-cd_2003_08.zip / 08 / Przeglad programow P2P / Shareaza 1.9 / Shareaza1890.exe / Schemas / presentation.xsd < prev    next >
Extensible Markup Language  |  2003-01-12  |  2KB  |  48 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Document:Presentation XML Framework; v1.4; Jonathan C. Nilson -->
  3.  
  4. <schema targetNamespace="http://www.shareaza.com/schemas/presentation.xsd" version="1.0" xmlns="http://www.w3.org/2001/XMLSchema">
  5.  
  6.     <element name="presentations">
  7.         <complexType>
  8.             <element name="presentation" type="presentationType" minOccurs="1" maxOccurs="unbounded"/>
  9.         </complexType>
  10.     </element>     
  11.     
  12.     <complexType name="presentationType">
  13.         <all>
  14.             <attribute name="title" type="string"/>
  15.             <attribute name="author" type="string"/>
  16.             <attribute name="subject" type="string"/>
  17.             <attribute name="keywords" type="string"/>
  18.             <attribute name="abstract" type="string"/>
  19.             <attribute name="initials" type="string"/>
  20.             <attribute name="copyright" type="string"/>
  21.             <attribute name="version" type="string"/>
  22.             <attribute name="revision" type="string"/>
  23.  
  24.             <attribute name="format">
  25.                 <simpleType base="string">
  26.                     <enumeration value="Adobe Acrobat PDF"/>
  27.                     <enumeration value="Corel Presentations"/>
  28.                     <enumeration value="HTML"/>
  29.                     <enumeration value="Macromedia Flash"/>
  30.                     <enumeration value="Microsoft PowerPoint"/>
  31.                     <enumeration value="Openoffice.org Presentation"/>
  32.                     <enumeration value="Openoffice.org Presentation Template"/>
  33.                 </simpleType>
  34.             </attribute>
  35.     
  36.             <attribute name="formatVersion" type="string"/>
  37.             <attribute name="slides" type="int"/>
  38.                 <attribute name="link" type="uriReference"/>
  39.             <attribute name="comments">
  40.                 <simpleType base="string">
  41.                     <maxInclusive value="100"/>
  42.                 </simpleType>
  43.             </attribute>
  44.             <attribute name="SHA1" type="string"/>
  45.         </all>
  46.     </complexType>
  47.  
  48. </schema>